home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d12 / c_toolbx.arc / BT_SPACE.C < prev    next >
Encoding:
C/C++ Source or Header  |  1988-03-30  |  518 b   |  20 lines

  1. /*  bt_space.c - declares some global variables */
  2. #include   "stdio.h"
  3. #include   "btree.h"
  4. #include   "bt_macro.h"
  5.  
  6. IX_DESC    *pci ;        /* refers to index descriptor */
  7.                 /* for current function call  */
  8.  
  9. BLOCK    spare_block ;        /* scratch block for splits and */
  10.                 /* compressing */
  11.  
  12. int  split_size = IXB_SPACE ;    /* split block when it contains */
  13.                 /* more than this many bytes */
  14.  
  15. int  comb_size = (IXB_SPACE/2); /* combine block when it contains */
  16.                 /* fewer than this many bytes */
  17.  
  18.  
  19.  
  20.